home *** CD-ROM | disk | FTP | other *** search
/ The Very Best of Atari Inside / The Very Best of Atari Inside 1.iso / mint / mgr_2 / src / atari / bit_on.c next >
C/C++ Source or Header  |  1990-09-18  |  121b  |  10 lines

  1. #include "bitmap.h"
  2.  
  3. int
  4. bit_on(map, x, y)
  5.     BITMAP *map;
  6.     int x, y;
  7. {
  8.     return bit_point(map, x, y, DST) != 0;
  9. }
  10.